home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / POW.C < prev    next >
Text File  |  1991-08-05  |  412b  |  23 lines

  1.  /* pow.c from page 234*/
  2.  #include <stdio.h>
  3.  #include <stdlib.h>
  4.  #include<math.h>
  5.  main(int argc, char **argv)
  6.  {
  7.     double x, y, result;
  8.     if(argc < 3)
  9.     {
  10.         printf("usage: %s <x> <y>\n", argv[0]);
  11.     }
  12.     else
  13.     {
  14.         x = atof(argv[1]);
  15.         y = atof(argv[2]);
  16.         result = pow(x, y);
  17.         if(errno != ERANGE)
  18.         {
  19.             printf("%s raised to the power of %s = %f\n",
  20.                 argv[1], argv[2], result);
  21.         }
  22.     }
  23.  }